home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00027_play button callback.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  1.6 KB  |  49 lines

  1. on mouseDown
  2.   global givState, givTransTestPtr, givTransTest
  3.   set clik to the clickOn
  4.   HSStatePut("iv", "noHelpScreen", 1)
  5.   if the mode of givState = #edit then
  6.     set the castNum of sprite clik to the number of cast "play button down"
  7.     set tmp to the number of cast "play button down"
  8.   else
  9.     set the castNum of sprite clik to the number of cast "play mode play button down"
  10.     set tmp to the number of cast "play mode play button down"
  11.   end if
  12.   updateStage()
  13.   repeat while the stillDown
  14.     nothing()
  15.   end repeat
  16.   if the mouseCast = tmp then
  17.     if the mode of givState = #edit then
  18.       set the castNum of sprite clik to the number of cast "play button"
  19.     else
  20.       set the castNum of sprite clik to the number of cast "play mode play button"
  21.     end if
  22.     if the activeVideoMode of givState = #pause then
  23.       pass()
  24.       exit
  25.     end if
  26.     DisableIdleAnim()
  27.     PlaySoundWait("CLIK2.AIF")
  28.     if (the mode of givState = #play) and (the activeMonitor of givState = 3) and (count(the editList of givState) > 0) then
  29.       set the editListPlaybackPtr of givState to 1
  30.       DVPause()
  31.       EditListPlay(1, #play)
  32.     else
  33.       if (the mode of givState = #edit) and (the activeMonitor of givState = 3) then
  34.         set givTransTest to 1
  35.         if count(the questionSelectList of givState) > 0 then
  36.           set givTransTestPtr to 1
  37.         else
  38.           set givTransTestPtr to 0
  39.         end if
  40.         DoTransitionTest()
  41.       else
  42.         set the selectListPlaybackPtr of givState to 1
  43.         DVPause()
  44.         PlayActiveVideo(#play)
  45.       end if
  46.     end if
  47.   end if
  48. end
  49.